home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d2
/
rwmnu326.arc
/
COPY.MNU
next >
Wrap
Text File
|
1991-02-08
|
3KB
|
133 lines
,-------------------------------------------------------------------------
017 -- BackGround Color
017 -- Selection Color
04f -- Page title color
017 -- The color of the letters (A-I)
04f -- The color of the program title line
070 -- The color of the HIGHLIGHT BAR
017 -- The color of the date & TIME
017 -- The color of the NUM, CAPS, and SCROLL
017 -- The PAGE MESSAGE color
002 -- The static input color
001 -- The ESCape to DOS value
,-------------------------------------------------------------------------
,
~COPY PROGRAMS
:FLOP2FXT
?Copy a file from diskette to fixed disk
]Choose which directory to copy the file(s) to.
]Type ESC to return to the MENU.
]
]
[[Your Directory here
[[Your Directory here
]
]
]Which disk drive has the file(s) to be copied?
]
]
[[A:
[[B:
]
]
]Now type the name of the file(s) to copy. Type *.* to copy all the files.
]
]
[
\copy %2\%3 c:\data\%1\%3
\m copy.mnu
,...............................................
:FXT2FLOP
?Copy a file from fixed disk to diskette.
]Choose the directory to copy the file(s) from.
]
[[Your directory here
[[Your directory here
]
]
]Which drive do you wish to copy the file(s) to?
]
]
[[A:
[[B:
]
]
]Now type the name of the file(s) to copy. Type *.* to copy all the files.
]
[
\cls
\echo on
\copy c:\data\%1\%3 %2\%3
\m copy.mnu
,.......................................
:CopyFlop
]Which drive has the disk you want to copy from?
]
]
[[A:
[[B:
]
]
]Enter the name of the file(s) to copy. Type *.* for all the files.
]Press ESC to return to the MENU.
]
]
[
]
]
]Which drive do you want to copy the files to?
]
]
[[A:
[[B:
\echo off
\cls
\echo ╔═════════════════════════════════════╗
\echo ║ Insert diskette to be copied from ║
\echo ║ ║
\echo ║ into DRIVE %1, then press ANY key ║
\echo ╚═════════════════════════════════════╝
\pause >nul
\echo
\echo
\echo
\echo on
\copy %1%2 c:\data\temp\%2
\@echo off
\echo ╔═════════════════════════════════════╗
\echo ║ Insert diskette to be copied to ║
\echo ║ ║
\echo ║ into DRIVE %3, then press ANY key ║
\echo ╚═════════════════════════════════════╝
\pause >nul
\echo
\echo
\echo
\echo on
\copy c:\data\temp\%2 %3
\echo Y | del c:\data\temp\*.*
\d:\app\menu\m copy.mnu
,.......................................
:Exit to DOS
\echo off
\cls
\path=c:\;c:\prog\dos;c:\prog\menu
\append c:\prog\dos
\echo Type `M' to return to the MAIN MENU
\echo
\prompt=$p$g
\c:
\cd\
,.......................................
:EXECUTE ANY DOS COMMAND
]Enter any valid DOS command on the line below.
]Press ESC to return to the MENU.
]
[
\cls
\%1
\m copy.mnu
:RETURN TO THE MAIN MENU
>rwmenu.mnu
!END OF COPY.MNU